home *** CD-ROM | disk | FTP | other *** search
/ Tripas 2 / TRIPAS 002.iso / RRRA.exe / MAMAC.CON < prev    next >
Encoding:
Text File  |  1998-07-02  |  767 b   |  49 lines

  1. // The Mama jack o' lope's gas ball  
  2. // Programmed by Joseph Aurili
  3.  
  4. // Define actions
  5. action AMAMAC_WAIT  0  14  1  1  4
  6.  
  7. // Define AI states
  8. ai AIMAMAC_WAIT AMAMAC_WAIT MAMA_STOP faceplayer   
  9.  
  10. // Actors ********************************************
  11. actor MAMACLOUD 10000 AMAMAC_WAIT
  12.   fall
  13.   
  14.   // Start and stay with stay
  15.   ifai 0
  16.   {
  17.     cstat 514
  18.     ai AIMAMAC_WAIT
  19.   }
  20.   
  21.   ifai AIMAMAC_WAIT 
  22.   {
  23.     rndmove
  24.     ifpdistl 3000
  25.     {
  26.       ifp palive
  27.       {  
  28.         ifcansee
  29.         {
  30.           ifrnd 32
  31.           {
  32.             addphealth -10
  33.             state lnsndpain
  34.           }
  35.         }
  36.       }
  37.     }
  38.     ifcount 20
  39.     {
  40.       resetcount
  41.       ifsizedown
  42.       {
  43.         killit
  44.       }
  45.     }
  46.   }
  47. enda
  48.  
  49.